projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9792be7
)
PCI: Add newlines to debug prints in pci_auto_common.c
author
Tuomas Tynkkynen
<
[email protected]
>
Mon, 14 May 2018 16:38:12 +0000
(19:38 +0300)
committer
Tom Rini
<
[email protected]
>
Sat, 26 May 2018 16:46:50 +0000
(12:46 -0400)
All of the debug output from this file is squished to one line. Fix
it.
Signed-off-by: Tuomas Tynkkynen <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
drivers/pci/pci_auto_common.c
patch
|
blob
|
history
diff --git
a/drivers/pci/pci_auto_common.c
b/drivers/pci/pci_auto_common.c
index 1d202ae2ef03e0f8907075a9b9983a90e506e6de..d90dbcf91a2af37a307bf751a09552f07a9cd1cf 100644
(file)
--- a/
drivers/pci/pci_auto_common.c
+++ b/
drivers/pci/pci_auto_common.c
@@
-37,7
+37,7
@@
int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
pci_addr_t addr;
if (!res) {
- debug("No resource");
+ debug("No resource
\n
");
goto error;
}
@@
-50,7
+50,7
@@
int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
res->bus_lower = addr + size;
- debug("address=0x%llx bus_lower=0x%llx", (unsigned long long)addr,
+ debug("address=0x%llx bus_lower=0x%llx
\n
", (unsigned long long)addr,
(unsigned long long)res->bus_lower);
*bar = addr;